summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2023-09-26 02:57:06 +0200
committerGitHub <noreply@github.com>2023-09-26 02:57:06 +0200
commit69ba29e518a3895e5defe55d52853ac06f329613 (patch)
tree4aa86b57fd01d7c016e884c8cd15b8c697dd89de
parentMerge pull request #11583 from t895/overlay-fix-2 (diff)
parentandroid: Prevent click ripple from appearing on loading card (diff)
downloadyuzu-69ba29e518a3895e5defe55d52853ac06f329613.tar
yuzu-69ba29e518a3895e5defe55d52853ac06f329613.tar.gz
yuzu-69ba29e518a3895e5defe55d52853ac06f329613.tar.bz2
yuzu-69ba29e518a3895e5defe55d52853ac06f329613.tar.lz
yuzu-69ba29e518a3895e5defe55d52853ac06f329613.tar.xz
yuzu-69ba29e518a3895e5defe55d52853ac06f329613.tar.zst
yuzu-69ba29e518a3895e5defe55d52853ac06f329613.zip
-rw-r--r--src/android/app/src/main/res/layout/fragment_emulation.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/android/app/src/main/res/layout/fragment_emulation.xml b/src/android/app/src/main/res/layout/fragment_emulation.xml
index da97d85c1..750ce094a 100644
--- a/src/android/app/src/main/res/layout/fragment_emulation.xml
+++ b/src/android/app/src/main/res/layout/fragment_emulation.xml
@@ -32,7 +32,8 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
- android:focusable="false">
+ android:focusable="false"
+ android:clickable="false">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/loading_layout"
@@ -155,7 +156,7 @@
android:id="@+id/in_game_menu"
android:layout_width="wrap_content"
android:layout_height="match_parent"
- android:layout_gravity="start|bottom"
+ android:layout_gravity="start"
app:headerLayout="@layout/header_in_game"
app:menu="@menu/menu_in_game"
tools:visibility="gone" />